home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / mac / developm / language / harvest.cpt / Harvest C / DObject.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-02-09  |  457 b   |  23 lines

  1. /*
  2.  
  3. Interface file for an ADT class using icemalloc() as its memory allocator
  4. Copyright 1992 Eric W. Sink, All Rights Reserved.
  5.  
  6. */
  7.  
  8. #define _H_DObject
  9.  
  10. #include <oops.h>                        /* THINK C interface for objects    */
  11. #include <Exceptions.h>                    /* TCL Exception handling            */
  12. #include "icemalloc.h"
  13.  
  14. class DObject : direct {
  15.     /* currently no instance variables */
  16.     public:
  17.     void Dispose(void);
  18.     void*        operator new( long );
  19.     void        operator delete( void* );
  20. };
  21.  
  22.  
  23.